home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enigma Amiga Life 109
/
EnigmaAmiga109CD.iso
/
kit internet
/
e-mail
/
yam2.0
/
rexx
/
miamioffline.yam
< prev
next >
Wrap
Text File
|
1999-03-22
|
588b
|
18 lines
/* MiamiOffline.yam - Go offline in Miami */
/* $VER: MiamiOffline.yam 1.1 (22.3.98) © 1998 by M.Beck <mbeck@access.ch> */
quitmiami = 0 /* Set this 1 if Miami should be terminated */
ports = "IBROWSE VOYAGER AMFTP.1 AWebControlPort" /* Don't go offline if one of these applications is running */
OPTIONS RESULTS
DO i = 1 TO WORDS(ports)
IF SHOW('P', WORD(ports,i)) THEN EXIT 0
END
IF SHOW('P', 'MIAMI.1') THEN DO
ADDRESS 'MIAMI.1'
ISONLINE
IF RC=1 THEN OFFLINE
IF quitmiami = 1 THEN QUIT
END
EXIT 0